Method: HTTPX::Response#<<

Defined in:
lib/httpx/response.rb

#<<(data) ⇒ Object

writes data chunk into the response body.



94
95
96
# File 'lib/httpx/response.rb', line 94

def <<(data)
  @body.write(data)
end